home *** CD-ROM | disk | FTP | other *** search
/ Download Now 8 / Download Now V8.iso / Program / InternetTools / ApacheWebServer1.3.6 / apache_1_3_6_win32.exe / _SETUP.1 / getopt.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-06-15  |  205 b   |  10 lines

  1. #ifndef GETOPT_H
  2. #define GETOPT_H
  3.  
  4. extern char *optarg;
  5. extern int optind;
  6. extern int opterr;
  7. extern int optopt;
  8. int getopt(int argc, char* const *argv, const char *optstr);
  9.  
  10. #endif /* GETOPT_H */